home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / foo2zjs / gamma-lookup.ps next >
Text File  |  2009-10-19  |  6KB  |  118 lines

  1. %%
  2. %% Here is some Postscript for setting the gamma values using table lookup
  3. %%
  4. %% These tables don't do anything currently.  Its a straight 1-1 mapping.
  5. %%
  6. %% But maybe somebody will figure out some tables if I provide the template :-)
  7. %%
  8. %% This is for fooling around with color correction.  None of the
  9. %% values in this file are tuned for the 2300 DL yet.  So far, I
  10. %% have not come across a *process* for determining what should go
  11. %% into this file.
  12. %%
  13. %% This defines a set of four PS procedures, one for each of C, M, Y, and K,
  14. %% whose input is a value in the range 0.0..1.0, and whose output should be
  15. %% a corrected value in the same range.
  16. %%
  17.  
  18. %%
  19. %% Lookup table for Cyan
  20. %%
  21. /c_lut [
  22. %The first value is for the level 0 (darker)            %levels...
  23. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                %0 ... 15
  24. 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32            %16 ... 31
  25. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47            %32 ... 47
  26. 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63            %48 ... 63
  27. 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79            %64 ... 79
  28. 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95            %80 ... 95
  29. 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111    %96 ... 111
  30. 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127    %112 ... 127
  31. 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143    %128 ... 143
  32. 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159    %144 ... 159
  33. 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175    %160 ... 175
  34. 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191    %176 ... 191
  35. 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207    %192 ... 207
  36. 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223    %208 ... 223
  37. 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239    %224 ... 239
  38. 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255    %240 ... 255
  39. %The last value is for level 255 (lighter).
  40. ] def
  41.  
  42. %%
  43. %% Lookup table for Magenta
  44. %%
  45. /m_lut [
  46. %The first value is for the level 0 (darker)            %levels...
  47. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                %0 ... 15
  48. 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32            %16 ... 31
  49. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47            %32 ... 47
  50. 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63            %48 ... 63
  51. 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79            %64 ... 79
  52. 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95            %80 ... 95
  53. 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111    %96 ... 111
  54. 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127    %112 ... 127
  55. 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143    %128 ... 143
  56. 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159    %144 ... 159
  57. 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175    %160 ... 175
  58. 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191    %176 ... 191
  59. 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207    %192 ... 207
  60. 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223    %208 ... 223
  61. 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239    %224 ... 239
  62. 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255    %240 ... 255
  63. %The last value is for level 255 (lighter).
  64. ] def
  65.  
  66. %%
  67. %% Lookup table for Yellow
  68. %%
  69. /y_lut [
  70. %The first value is for the level 0 (darker)            %levels...
  71. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                %0 ... 15
  72. 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32            %16 ... 31
  73. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47            %32 ... 47
  74. 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63            %48 ... 63
  75. 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79            %64 ... 79
  76. 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95            %80 ... 95
  77. 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111    %96 ... 111
  78. 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127    %112 ... 127
  79. 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143    %128 ... 143
  80. 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159    %144 ... 159
  81. 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175    %160 ... 175
  82. 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191    %176 ... 191
  83. 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207    %192 ... 207
  84. 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223    %208 ... 223
  85. 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239    %224 ... 239
  86. 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255    %240 ... 255
  87. %The last value is for level 255 (lighter).
  88. ] def
  89.  
  90. %%
  91. %% Lookup table for Black
  92. %%
  93. /k_lut [
  94. %The first value is for the level 0 (darker)            %levels...
  95. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                %0 ... 15
  96. 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32            %16 ... 31
  97. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47            %32 ... 47
  98. 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63            %48 ... 63
  99. 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79            %64 ... 79
  100. 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95            %80 ... 95
  101. 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111    %96 ... 111
  102. 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127    %112 ... 127
  103. 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143    %128 ... 143
  104. 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159    %144 ... 159
  105. 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175    %160 ... 175
  106. 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191    %176 ... 191
  107. 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207    %192 ... 207
  108. 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223    %208 ... 223
  109. 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239    %224 ... 239
  110. 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255    %240 ... 255
  111. %The last value is for level 255 (lighter).
  112. ] def
  113. {255 mul 0.5 add cvi c_lut exch get 255 div}
  114. {255 mul 0.5 add cvi m_lut exch get 255 div}
  115. {255 mul 0.5 add cvi y_lut exch get 255 div}
  116. {255 mul 0.5 add cvi k_lut exch get 255 div}
  117. setcolortransfer
  118.